##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 09\09.1362 - No Title.py
# Description: No Title
##############################################################################
with open("multiples of 4.txt", "w") as multiples4:
with open("evens.txt ") as evens:
for line in evens.readlines():
if int(line) % 4 == 0:
multiples4.write(line)